home *** CD-ROM | disk | FTP | other *** search
INSTALL Professional project | 1994-11-18 | 5.4 KB | 203 lines |
- @DefineProject
- @Name = "Axia Common Bird Songs"
- @Version = "18 November, 1994"
- @Subdir = "\\axiacbs"
- @OutDrive = C
- @InDiskBell = @TRUE
- @EndProject
-
- @DefineVars
- @Integer @Red = @RGB(255,0,0) //DEFINE COLOR RED
- @Integer @Green = @RGB(0,255,0) //DEFINE COLOR GREEN
- @Integer @Blue = @RGB(0,0,255) //DEFINE COLOR BLUE
- @Integer @Black = @RGB(0,0,0) //DEFINE COLOR BLACK
- @Integer @V = @VideoCard
- @Qstring @DiskAccess = "@GetINI("386enh","32BitDiskAccess","system.ini")"
- @Qstring @NetDriver = "@GetINI("boot","network.drv","system.ini")"
- @Qstring @DispDriver = "@GetINI("boot","display.drv","system.ini")"
- @Qstring @WinShell = "@GetINI("boot","shell","system.ini")"
- @Qstring @UserName = "Doug"
- @Qstring @FirmName = "Axia"
- @EndVars
-
- @BackgroundMode(3,@Blue,@Black)
-
- @Display
- Welcome to @Name !!
-
- This program will install the AXIA module
- dated @Version onto your computer
- system and verify the integrity of the
- distribution files.
-
- @Pause
- @EndDisplay
-
- @If (@Exists "@WindowsDrive:\\@WindowsDir\\AXIAcbs.GRP")
-
- @ProgramManager("[DeleteGroup(@Name)]")
- @endif
-
- NEWDRIVE: // Goto label for reselecting drive
- /*
- wINSTALL will now prompt the end-user for the
- drive they wish wINSTALL to be installed onto.
- */
- @BackgroundMode(3,@Blue,@Black)
-
- @DlgCtrlSize(0,8,15,15,27)
-
- @GetOutDrive @OutDrive @Prompt = "Enter target drive"
- @Suppress(0,17) // Suppress floppies & CD-ROM drives
- Please select the drive where you wish AXIA @Name
- to be installed on your machine. Any drive
- available can be used assuming you have
- access rights to the drive you select, and
- there is enough space available for installation.
- @EndOutDrive
-
- /*
- wINSTALL will now prompt the end-user for the
- main directory they wish wINSTALL to be installed
- onto.
- */
-
- NEWDIR:
- @BackgroundMode(3,@Blue,@Black)
-
- @DlgCtrlSize(0,7,0,8,35)
-
- @GetSubdir @Subdir @Prompt = "Enter target subdirectory"
- Please select the main subdirectory PATH under which
- you wish the @Name module to be installed.
-
-
-
- @EndSubdir
-
-
-
- /*
- copy the files, from the CD ROM to the hard disk
- of the end-users particular choice.
- */
- @DefineDisk
-
- @label = "Disk 1"
-
- @file bin\AXIA.EXE
- @out @subDir\bin\*.*
- @file bin\pictures.exe
- @out @subdir\bin\*.*
- @file bin\axiaICON.ico
- @out @subdir\bin\*.*
- @file bin\slidshow.ico
- @out @subdir\bin\*.*
- @file bin\htua.ico
- @out @subdir\bin\*.*
- @file bin\VWSIGNON.BMP
- @out @subdir\bin\*.*
- @file bin\RECINTRO.BMP
- @out @subdir\bin\*.*
- @file bin\RECINTRO.WAV
- @out @subdir\bin\*.*
-
- @file bin\VWABORT.DLL
- @out @subdir\bin\*.*
- @file bin\VWBAS11.DLL
- @out @subdir\bin\*.*
- @file bin\VWDLGS.DLL
- @out @subdir\bin\*.*
- @file bin\VWFLOAT.DLL
- @out @subdir\bin\*.*
- @file bin\VWFONT.DLL
- @out @subdir\bin\*.*
- @file bin\VWSIGNON.DLL
- @out @subdir\bin\*.*
- @file bin\VWVM11.DLL
- @out @subdir\bin\*.*
-
-
- @file bin\dlls\AXIADLGS.DLL
- @out @subdir\bin\dlls\*.*
- @file bin\dlls\AXIAP3.DLL
- @out @subdir\bin\dlls\*.*
- @file bin\dlls\MWND.DLL
- @out @subdir\bin\dlls\*.*
- @file bin\dlls\sulis20.dll
- @out @subdir\bin\dlls\*.*
-
- @file other\ctl3dv2.dll
- @out @windowsDrive:\@windowsDir\System\*.*
-
-
- @EndDisk
- @if (@ExtTotal < 4M)
- @write("@WindowsDrive:\\@WindowsDir\\AXIACBS.INI","wt","[startup]\nfirsttime=1\n\n[midi]\nmusic=0\n\n[zoom]\nfactor=200\n")
- @display
- Due to memory restrictions on this machine,
- the MIDI music features of @Name have been
- disabled.
- @pause
- @endDisplay
- @else
- @write("@WindowsDrive:\\@WindowsDir\\AXIACBS.INI","wt","[startup]\nfirsttime=1\n\n[midi]\nmusic=1\n\n[zoom]\nfactor=200\n")
- @endif
-
- @Finish
- /* This creates the subsets directory */
-
- @MkDir("@outdrive:\\@SubDir\\SUBSETS")
-
- @Cls
- /*
- The following command is used to create the AXIA group and
- add the AXIA item to the Windows Program Manager.
- */
-
-
- @ProgramManager("[CreateGroup(@Name,@WindowsDrive:\\@WindowsDir\\AxiaCBS.grp)][AddItem(@Outdrive:\\@Subdir\\bin\\axia.exe @StartupDrive:\\@StartupDir\\,Common Bird Songs,@OutDrive:\\@Subdir\\bin\\axiaICON.ico,,25,25,@Outdrive:\\@Subdir)][AddItem(@Outdrive:\\@Subdir\\bin\\pictures.exe @StartupDrive:\\@StartupDir\\ PICTURES.DAT 5,AXIA Slide Show,@OutDrive:\\@Subdir\\bin\\slidshow.ico,,100,25,@Outdrive:\\@Subdir)][AddItem(@Outdrive:\\@Subdir\\bin\\AXIA.exe @StartupDrive:\\@StartupDir\\ Ahtua.afs,How To Use Axia,@OutDrive:\\@Subdir\\bin\\htua.ico,,175,25,@Outdrive:\\@Subdir)][AddItem(@WindowsDrive:\\@WindowsDir\\Write.exe @StartupDrive:\\@StartupDir\\other\\readme.wri,Read Me,,,255,25,@Outdrive:\\@Subdir)][ShowGroup(@Name, 1)]")
-
-
-
-
-
-
- @Cls
-
- The AXIA @Name module has finished installing.
- We will now install "Video for Windows", if necessary.
- If you have any technical or sales questions,
- please feel free to contact us at:
-
- AXIA International Inc.
- Suite 510, 840 - 6th Avenue S.W.
- Calgary, AB
- Canada T2P 3E5
-
- Phone:
- (403) 262-2942 Technical Support or:
- (403) 261-1675 24-hour FAX machine
-
- Email:
- Compuserve: 74514,2245
-
-
- @Pause
-
- @if(@exists("@windowsDrive:\\@windowsDir\\system\\msvideo.dll"))
- @if(@filedate("@windowsDrive:\\@windowsDir\\system\\msvideo.dll") <
- @StrToDate("1993/11/19"))
- @WinExec("@StartupDrive:\\vfwrt\\setup.exe", 1 )
- @EndIf
- @else
- @WinExec("@StartupDrive:\\vfwrt\\setup.exe", 1 )
- @EndIf
-
-
- @exit
- @EndFinish
-
- // end-of-file
-
-